home *** CD-ROM | disk | FTP | other *** search
Text File | 1998-10-11 | 1.5 KB | 111 lines | [TEXT/CWIE] |
- // DModalStuffData.cp -- data container class for Everything
-
- #include "DModalStuffData.h"
-
- #include <LFileStream.h>
-
-
- //----------
- DModalStuffData::DModalStuffData ()
- {
- mTools2 = 0;
- mFromValuesList3 = 0;
- mFromMenu2 = 0;
- mTextList2 = 0;
- }
-
- //----------
- DModalStuffData::~DModalStuffData ()
- {
- }
-
- //----------
- void DModalStuffData::CopyFrom (
- DModalStuffData* inOther)
- {
- mTools2 = inOther->mTools2;
- mFromValuesList3 = inOther->mFromValuesList3;
- mFromMenu2 = inOther->mFromMenu2;
- mTextList2 = inOther->mTextList2;
- }
-
- //----------
- void DModalStuffData::ReadFromFile (
- LFileStream* inFile)
- {
- }
-
- //----------
- void DModalStuffData::WriteToFile (
- LFileStream* inFile)
- {
- }
-
-
- //----------
- SInt16 DModalStuffData::GetTools2 () const
- {
-
- return mTools2;
- }
-
- //----------
- void DModalStuffData::SetTools2 (
- SInt16 inValue)
- {
- mTools2 = inValue;
-
- SignalDataChanged (idTools2);
- }
-
-
- //----------
- SInt16 DModalStuffData::GetFromValuesList3 () const
- {
-
- return mFromValuesList3;
- }
-
- //----------
- void DModalStuffData::SetFromValuesList3 (
- SInt16 inValue)
- {
- mFromValuesList3 = inValue;
-
- SignalDataChanged (idFromValuesList3);
- }
-
-
- //----------
- SInt16 DModalStuffData::GetFromMenu2 () const
- {
-
- return mFromMenu2;
- }
-
- //----------
- void DModalStuffData::SetFromMenu2 (
- SInt16 inValue)
- {
- mFromMenu2 = inValue;
-
- SignalDataChanged (idFromMenu2);
- }
-
-
- //----------
- SInt16 DModalStuffData::GetTextList2 () const
- {
-
- return mTextList2;
- }
-
- //----------
- void DModalStuffData::SetTextList2 (
- SInt16 inValue)
- {
- mTextList2 = inValue;
-
- SignalDataChanged (idTextList2);
- }
-